VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Dicom Namespace / DicomDataElementCollection Class / TryGetData Methods / TryGetData(DicomDataElementId,DateTime[]) Method
Syntax Requirements SeeAlso
In This Topic
    TryGetData(DicomDataElementId,DateTime[]) Method (DicomDataElementCollection)
    In This Topic
    Tries to retrieve the value for the specified DicomDataElement in the collection.
    Syntax
    'Declaration
    
    Public Overloads Function TryGetData( _
    ByVal id
    The identifier of data element.
    As DicomDataElementId, _
    ByRef value
    The value of data element.
    () As System.DateTime _
    ) As Boolean
    public bool TryGetData(
    DicomDataElementId id,
    out System.DateTime[] value
    )
    public: bool TryGetData(
    DicomDataElementId id,
    [PARAMFLAG::Out] System.DateTime[]* value
    )
    public:
    bool TryGetData(
    DicomDataElementId id,
    [Out] array<System.DateTime>^ value
    )

    Parameters

    id
    The identifier of data element.
    value
    The value of data element.

    Return Value

    True if value is retrieved; otherwise, false.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also